home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / OLE2BOOK.ZIP / CHAP05.ZIP / CHAP05 / POLYLINE / POLYLINE.RC < prev    next >
Text File  |  1993-03-24  |  2KB  |  73 lines

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Object version 1.00
  4.  *
  5.  * Resources for the Polyline object (just the version information)
  6.  *
  7.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved,
  8.  * as applied to redistribution of this source code in source form
  9.  * License is granted to use of compiled code in shipped binaries.
  10.  *
  11.  * Kraig Brockschmidt, Software Design Engineer
  12.  * Microsoft Systems Developer Relations
  13.  * One Microsoft Way
  14.  * Redmond, WA  98052
  15.  *
  16.  * Internet  :  kraigb@microsoft.com
  17.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  18.  */
  19.  
  20.  
  21. #include <windows.h>
  22. #include <ver.h>
  23. #include "resource.h"
  24.  
  25.  
  26. STRINGTABLE
  27.     BEGIN
  28.      IDS_STORAGEFORMAT,      "Polyline Figure"
  29.      IDS_USERTYPE,           "Polyline Figure"
  30.     END
  31.  
  32.  
  33.  
  34.  
  35.  
  36. //Default is nodebug
  37. #ifndef DEBUG
  38. #define VER_DEBUG                   0
  39. #else
  40. #define VER_DEBUG                   VS_FF_DEBUG
  41. #endif
  42.  
  43. VS_VERSION_INFO VERSIONINFO 
  44.  FILEVERSION        1,0,0,0
  45.  PRODUCTVERSION     1,0,0,0
  46.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  47.  FILEFLAGS          VER_DEBUG
  48.  FILEOS             VOS_DOS_WINDOWS16
  49.  FILETYPE           VFT_DLL
  50.  FILESUBTYPE        VFT_UNKNOWN
  51.  
  52.  BEGIN
  53.    BLOCK "StringFileInfo"
  54.     BEGIN
  55.      BLOCK "040904E4"
  56.       BEGIN
  57.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  58.        VALUE "FileDescription", "Polyline Object 1.0", "\0"
  59.        VALUE "FileVersion",     "1.00\0", "\0"
  60.        VALUE "InternalName",    "POLYLINE.DLL", "\0"
  61.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  62.        VALUE "OriginalFilename","POLYLINE.DLL", "\0"
  63.        VALUE "ProductName",     "Polyline Object 1.0", "\0"
  64.        VALUE "ProductVersion",  "1.00\0"
  65.       END
  66.    END
  67.  
  68.    BLOCK "VarFileInfo"
  69.     BEGIN 
  70.      VALUE "Translation", 0x0409, 0x04E4
  71.     END 
  72.  END
  73.